home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / c / c-tools-.000 / c-tools- / c-tools-0.4 / cinfo.lib.standardc < prev    next >
Encoding:
Text File  |  1995-08-13  |  17.6 KB  |  450 lines

  1. # Standard C Library
  2.  
  3. # Copyright (C) 1995 Sandro Sigala - <sansig@freenet.hut.fi>.
  4.  
  5. # $Id: cinfo.lib.standardc,v 1.20 1995/08/11 14:53:23 sandro Exp $
  6.  
  7. # This program is free software; you can redistribute it and/or modify
  8. # it under the terms of the GNU General Public License as published by
  9. # the Free Software Foundation; either version 2 of the License, or
  10. # (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with this program; if not, write to the Free Software
  19. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21. #
  22. # ANSI C Standard X3.159-1989 (X3J11 commitee)
  23. # ISO C Standard 9899:1990 (JTC1/SC22/WG14 comittee)
  24. #
  25.  
  26. .library "Standard C Library";
  27.  
  28. .header "assert.h";
  29. .symbol "assert" "macro" "void assert (int expression);";
  30.  
  31. .header "ctype.h";
  32. .symbol "isalnum" "func" "int isalnum (int c);";
  33. .symbol "isalpha" "func" "int isalpha (int c);";
  34. .symbol "iscntrl" "func" "int iscntrl (int c);";
  35. .symbol "isdigit" "func" "int isdigit (int c);";
  36. .symbol "isgraph" "func" "int isgraph (int c);";
  37. .symbol "islower" "func" "int islower (int c);";
  38. .symbol "isprint" "func" "int isprint (int c);";
  39. .symbol "ispunct" "func" "int ispunct (int c);";
  40. .symbol "isspace" "func" "int isspace (int c);";
  41. .symbol "isupper" "func" "int isupper (int c);";
  42. .symbol "isxdigit" "func" "int isxdigit (int c);";
  43. .symbol "tolower" "func" "int tolower (int c);";
  44. .symbol "toupper" "func" "int toupper (int c);";
  45.  
  46. .header "errno.h";
  47. .symbol "errno" "macro" "$\
  48. errno expands itself into a modifiable lvalue of type `int'.";
  49. .symbol "EDOM" "macro" "$\
  50. EDOM is returned when a domain error is encourred.";
  51. .symbol "ERANGE" "macro" "$\
  52. ERANGE is returned when a underflow or a overflow is encourred.";
  53.  
  54. .header "float.h";
  55. .symbol "DBL_DIG" "macro" "$\
  56. no documentation. sorry.";
  57. .symbol "DBL_EPSLON" "macro" "$\
  58. no documentation. sorry.";
  59. .symbol "DBL_MANT_DIG" "macro" "$\
  60. no documentation. sorry.";
  61. .symbol "DBL_MAX" "macro" "$\
  62. no documentation. sorry.";
  63. .symbol "DBL_MAX_10_EXP" "macro" "$\
  64. no documentation. sorry.";
  65. .symbol "DBL_MAX_EXP" "macro" "$\
  66. no documentation. sorry.";
  67. .symbol "DBL_MIN" "macro" "$\
  68. no documentation. sorry.";
  69. .symbol "DBL_MIN_10_EXP" "macro" "$\
  70. no documentation. sorry.";
  71. .symbol "DBL_MIN_EXP" "macro" "$\
  72. no documentation. sorry.";
  73. .symbol "FLT_DIG" "macro" "$\
  74. no documentation. sorry.";
  75. .symbol "FLT_EPSLON" "macro" "$\
  76. no documentation. sorry.";
  77. .symbol "FLT_MANT_DIG" "macro" "$\
  78. no documentation. sorry.";
  79. .symbol "FLT_MAX" "macro" "$\
  80. no documentation. sorry.";
  81. .symbol "FLT_MAX_10_EXP" "macro" "$\
  82. no documentation. sorry.";
  83. .symbol "FLT_MAX_EXP" "macro" "$\
  84. no documentation. sorry.";
  85. .symbol "FLT_MIN" "macro" "$\
  86. no documentation. sorry.";
  87. .symbol "FLT_MIN_10_EXP" "macro" "$\
  88. no documentation. sorry.";
  89. .symbol "FLT_MIN_EXP" "macro" "$\
  90. no documentation. sorry.";
  91. .symbol "FLT_RADIX" "macro" "$\
  92. no documentation. sorry.";
  93. .symbol "FLT_ROUNDS" "macro" "$\
  94. no documentation. sorry.";
  95. .symbol "LDBL_DIG" "macro" "$\
  96. no documentation. sorry.";
  97. .symbol "LDBL_EPSLON" "macro" "$\
  98. no documentation. sorry.";
  99. .symbol "LDBL_MANT_DIG" "macro" "$\
  100. no documentation. sorry.";
  101. .symbol "LDBL_MAX" "macro" "$\
  102. no documentation. sorry.";
  103. .symbol "LDBL_MAX_10_EXP" "macro" "$\
  104. no documentation. sorry.";
  105. .symbol "LDBL_MAX_EXP" "macro" "$\
  106. no documentation. sorry.";
  107. .symbol "LDBL_MIN" "macro" "$\
  108. no documentation. sorry.";
  109. .symbol "LDBL_MIN_10_EXP" "macro" "$\
  110. no documentation. sorry.";
  111. .symbol "LDBL_MIN_EXP" "macro" "$\
  112. no documentation. sorry.";
  113.  
  114. .header "limits.h";
  115. .symbol "CHAR_BIT" "macro" "$\
  116. no documentation. sorry.";
  117. .symbol "SCHAR_MIN" "macro" "$\
  118. no documentation. sorry.";
  119. .symbol "SCHAR_MAX" "macro" "$\
  120. no documentation. sorry.";
  121. .symbol "UCHAR_MAX" "macro" "$\
  122. no documentation. sorry.";
  123. .symbol "CHAR_MIN" "macro" "$\
  124. no documentation. sorry.";
  125. .symbol "CHAR_MAX" "macro" "$\
  126. no documentation. sorry.";
  127. .symbol "MB_LEN_MAX" "macro" "$\
  128. no documentation. sorry.";
  129. .symbol "SHRT_MIN" "macro" "$\
  130. no documentation. sorry.";
  131. .symbol "SHRT_MAX" "macro" "$\
  132. no documentation. sorry.";
  133. .symbol "USHRT_MAX" "macro" "$\
  134. no documentation. sorry.";
  135. .symbol "INT_MIN" "macro" "$\
  136. no documentation. sorry.";
  137. .symbol "INT_MAX" "macro" "$\
  138. no documentation. sorry.";
  139. .symbol "UINT_MAX" "macro" "$\
  140. no documentation. sorry.";
  141. .symbol "LONG_MIN" "macro" "$\
  142. no documentation. sorry.";
  143. .symbol "LONG_MAX" "macro" "$\
  144. no documentation. sorry.";
  145. .symbol "ULONG_MAX" "macro" "$\
  146. no documentation. sorry.";
  147.  
  148. .header "locale.h";
  149. .symbol "lconv" "struct" "struct lconv {
  150.   char *decimal_point;
  151.   char *thousands_sep;
  152.   char *grouping;
  153.   char *int_curr_symbol;
  154.   char *currency_symbol;
  155.   char *mon_decimal_point;
  156.   char *mon_thousands_sep;
  157.   char *mon_grouping;
  158.   char *positive_sign;
  159.   char *negative_sign;
  160.   char int_frac_digits;
  161.   char frac_digits;
  162.   char p_cs_precedes;
  163.   char p_sep_by_space;
  164.   char n_cs_precedes;
  165.   char n_sep_by_space;
  166.   char p_sign_posn;
  167.   char n_sign_posn;
  168. };";
  169. .symbol "setlocale" "func" "char *setlocale (int category, const char *locale);";
  170. .symbol "LC_ALL" "macro" "$\
  171. no documentation. sorry.";
  172. .symbol "LC_COLLATE" "macro" "$\
  173. no documentation. sorry.";
  174. .symbol "LC_CTYPE" "macro" "$\
  175. no documentation. sorry.";
  176. .symbol "LC_MONETARY" "macro" "$\
  177. no documentation. sorry.";
  178. .symbol "LC_NUMERIC" "macro" "$\
  179. no documentation. sorry.";
  180. .symbol "LC_TIME" "macro" "$\
  181. no documentation. sorry.";
  182. .symbol "localeconv" "func" "struct lconv *localeconv (void);";
  183.  
  184. .header "math.h";
  185. .symbol "acos" "func" "double acos (double x);";
  186. .symbol "asin" "func" "double asin (double x);";
  187. .symbol "atan" "func" "double atan (double x);";
  188. .symbol "atan2" "func" "double atan2 (double y, double x);";
  189. .symbol "ceil" "func" "double ceil (double x);";
  190. .symbol "cos" "func" "double cos (double x);";
  191. .symbol "cosh" "func" "double cosh (double x);";
  192. .symbol "exp" "func" "double exp (double x);";
  193. .symbol "fabs" "func" "double fabs (double x);";
  194. .symbol "floor" "func" "double floor (double x);";
  195. .symbol "frexp" "func" "double frexp (double value, int *exp);";
  196. .symbol "ldexp" "func" "double ldexp (double x, int exp);";
  197. .symbol "fmod" "func" "double acos (double x, double y);";
  198. .symbol "log" "func" "double log (double x);";
  199. .symbol "log10" "func" "double log10 (double x);";
  200. .symbol "modf" "func" "double modf (double value, double *iptr);";
  201. .symbol "pow" "func" "double acos (double x, double y);";
  202. .symbol "sin" "func" "double sin (double x);";
  203. .symbol "sinh" "func" "double sinh (double x);";
  204. .symbol "sqrt" "func" "double sqrt (double x);";
  205. .symbol "tan" "func" "double tan (double x);";
  206. .symbol "tanh" "func" "double tanh (double x);";
  207. .symbol "HUGE_VAL" "macro" "$\
  208. no documentation. sorry.";
  209.  
  210. .header  "setjmp.h";
  211. .symbol "longjmp" "func" "void longjmp (jmp_buf env, int val);";
  212. .symbol "setjmp" "macro" "int setjmp (jmp_buf env);";
  213. .symbol "jmp_buf" "type" "$\
  214. jmp_buf is an object of type array needed for saving the informations needed
  215. for restoring the system environment on call";
  216.  
  217. .header "signal.h";
  218. .symbol "raise" "func" "int raise (int sig);";
  219. .symbol "signal" "func" "void (*signal (int sig, void (*func) (int))) (int);";
  220. .symbol "sig_atomic_t" "type" "$\
  221. sig_atomic_t is a integer type of an object that can be accessed as a atomic
  222. entity, ever in the presence of asicronics interrupts";
  223. .symbol "SIGABRT" "macro" "$\
  224. no documentation. sorry.";
  225. .symbol "SIGFPE" "macro" "$\
  226. no documentation. sorry.";
  227. .symbol "SIGILL" "macro" "$\
  228. no documentation. sorry.";
  229. .symbol "SIGINT" "macro" "$\
  230. no documentation. sorry.";
  231. .symbol "SIGSEGV" "macro" "$\
  232. no documentation. sorry.";
  233. .symbol "SIGTERM" "macro" "$\
  234. no documentation. sorry.";
  235. .symbol "SIG_DFL" "macro" "$\
  236. no documentation. sorry.";
  237. .symbol "SIG_ERR" "macro" "$\
  238. no documentation. sorry.";
  239. .symbol "SIG_IGN" "macro" "$\
  240. no documentation. sorry.";
  241.  
  242. .header "stdarg.h";
  243. .symbol "va_arg" "macro" "<type> va_arg (va_list ap, type);";
  244. .symbol "va_end" "macro" "void va_end (va_list ap);";
  245. .symbol "va_start" "macro" "void va_start (va_list ap, <paramN>);";
  246. .symbol "va_list" "type" "$\
  247. va_list is a type useful for saving the informations needed by the macros
  248. va_start, va_arg and va_end.";
  249.  
  250. .header "stddef.h";
  251. .symbol "offsetof" "macro" "size_t offsetof (<type>, <member_designator>);";
  252. .symbol "NULL" "macro" "$\
  253. NULL expands itself into a null pointer constant.";
  254. .symbol "ptrdiff_t" "type" "$\
  255. ptrdiff_t represents the integer type returned by a pointer subtraction.";
  256. .symbol "size_t" "type" "$\
  257. size_t represents the integer type returned by the `sizeof' operator.";
  258. .symbol "wchar_t" "type" "$\
  259. no documentation. sorry.";
  260.  
  261. .header "stdio.h";
  262. .symbol "clearerr" "func" "void clearerr (FILE *stream);";
  263. .symbol "close" "func" "$\
  264. no documentation. sorry.";
  265. .symbol "create" "func" "$\
  266. no documentation. sorry.";
  267. .symbol "open" "func" "$\
  268. no documentation. sorry.";
  269. .symbol "fclose" "func" "int fclose (FILE *stream);";
  270. .symbol "feof" "func" "int feof (FILE *stream);";
  271. .symbol "ferror" "func" "int ferror (FILE *stream);";
  272. .symbol "fflush" "func" "int fflush (FILE *stream);";
  273. .symbol "fgetc" "func" "int fgetc (FILE *stream);";
  274. .symbol "fgetpos" "func" "int fgetpos (FILE *stream, fpos_t *pos);";
  275. .symbol "fgets" "func" "char *fgets (char *s, int n, FILE *stream);";
  276. .symbol "fopen" "func" "FILE *fopen (const char *filename, const char *mode);";
  277. .symbol "fprintf" "func" "int fprintf (FILE *stream, const char *format, ...);";
  278. .symbol "fputc" "func" "int fputc (int c, FILE *stream);";
  279. .symbol "fputs" "func" "int fputs (const char *s, FILE *stream);";
  280. .symbol "fread" "func" "size_t fread (void *ptr, size_t size, size_t nmemb, FILE *stream);";
  281. .symbol "freopen" "func" "FILE *freopen (const char *filename, const char *mode, FILE *stream);";
  282. .symbol "fscanf" "func" "int fscanf (FILE *stream, const char *format, ...);";
  283. .symbol "fseek" "func" "int fseek (FILE *stream, long int offset, int whence);";
  284. .symbol "fsetpos" "func" "int fsetpos (FILE *stream, const fpos_t *pos);";
  285. .symbol "ftell" "func" "long int ftell (FILE *stream);";
  286. .symbol "fwrite" "func" "size_t fwrite (const void *ptr, size_t size, size_t nmemb, FILE *stream);";
  287. .symbol "getc" "func" "int getc (FILE *stream);";
  288. .symbol "getchar" "func" "int getchar (void);";
  289. .symbol "gets" "func" "char *gets (char *s);";
  290. .symbol "perror" "func" "void perror (const char *s);";
  291. .symbol "printf" "func" "int printf (const char *format, ...);";
  292. .symbol "putc" "func" "int putc (int c, FILE *stream);";
  293. .symbol "putchar" "func" "int putchar (int c);";
  294. .symbol "puts" "func" "int puts (const char *s);";
  295. .symbol "remove" "func" "int remove (const char *filename);";
  296. .symbol "rename" "func" "int rename (const char *old, const char *new);";
  297. .symbol "rewind" "func" "void rewind (FILE *stream);";
  298. .symbol "scanf" "func" "int scanf (const char *format, ...);";
  299. .symbol "setbuf" "func" "void setbuf (FILE *stream, char *buf);";
  300. .symbol "setvbuf" "func" "void setvbuf (FILE *stream, char *buf, int mode, size_t size);";
  301. .symbol "sprintf" "func" "int sprintf (char *s, const char *format, ...);";
  302. .symbol "sscanf" "func" "int sscanf (const char *s, const char *format, ...);";
  303. .symbol "tmpfile" "func" "FILE *tmpfile (void);";
  304. .symbol "tmpnam" "func" "char *tmpnam (char *s);";
  305. .symbol "ungetc" "func" "int ungetc (int c, FILE *stream);";
  306. .symbol "vfprintf" "func" "int vfprintf (FILE stream, const char *format, va_list arg);";
  307. .symbol "vprintf" "func" "int vprintf (const char *format, va_list arg);";
  308. .symbol "vsprintf" "func" "int vsprintf (char *s, const char *format, va_list arg);";
  309. .symbol "FILE" "type" "$\
  310. no documentation. sorry.";
  311. .symbol "fpos_t" "type" "$\
  312. no documentation. sorry.";
  313. .symbol "_IOFBF" "macro" "$\
  314. no documentation. sorry.";
  315. .symbol "_IOLBF" "macro" "$\
  316. no documentation. sorry.";
  317. .symbol "_IONBF" "macro" "$\
  318. no documentation. sorry.";
  319. .symbol "BUFSIZ" "macro" "$\
  320. no documentation. sorry.";
  321. .symbol "EOF" "macro" "$\
  322. no documentation. sorry.";
  323. .symbol "FILENAME_MAX" "macro" "$\
  324. no documentation. sorry.";
  325. .symbol "FOPEN_MAX" "macro" "$\
  326. no documentation. sorry.";
  327. .symbol "L_tmpnam" "macro" "$\
  328. no documentation. sorry.";
  329. .symbol "SEEK_CUR" "macro" "$\
  330. no documentation. sorry.";
  331. .symbol "SEEK_END" "macro" "$\
  332. no documentation. sorry.";
  333. .symbol "SEEK_SET" "macro" "$\
  334. no documentation. sorry.";
  335. .symbol "stderr" "macro" "$\
  336. stderr is a `FILE pointer' type expression who point to the associated object.";
  337. .symbol "stdin" "macro" "$\
  338. stdin is a `FILE pointer' type expression who point to the associated object.";
  339. .symbol "stdout"  "macro" "$\
  340. stdout is a `FILE pointer' type expression who point to the associated object.";
  341. .symbol "TMP_MAX" "macro" "$\
  342. no documentation. sorry.";
  343.  
  344. .header "stdlib.h";
  345. .symbol "abort" "func" "void abort (void);";
  346. .symbol "abs" "func" "int abs (int j);";
  347. .symbol "atof" "func" "double atof (const char *nptr);";
  348. .symbol "atoi" "func" "int atoi (const char *nptr);";
  349. .symbol "atol" "func" "long int atol (const char *nptr);";
  350. .symbol "atexit" "func" "int atexit (void (*func)(void));";
  351. .symbol "bsearch" "func" "\
  352. void *bsearch (const void *key, const void *base, size_t nmemb, size_t size,
  353.                int (*compar) (const void *, const vold *));";
  354. .symbol "calloc" "func" "void *calloc (size_t nmemb, size_t size);";
  355. .symbol "div" "func" "div_t div (int number, int denom);";
  356. .symbol "exit" "func" "void exit (int status);";
  357. .symbol "free" "func" "void free (void *ptr);";
  358. .symbol "getenv" "func" "char *getenv (const char *name);";
  359. .symbol "labs" "func" "long int labs (long int j);";
  360. .symbol "ldiv" "func" "ldiv_t ldiv (long int number, long int denom);";
  361. .symbol "malloc" "func" "void *malloc (size_t size);";
  362. .symbol "mblen" "func" "int mblen (const char *s, size_t n);";
  363. .symbol "mbstowcs" "func" "int mbstowcs (wchar_t *pwcs, const char *s, size_t n);";
  364. .symbol "mbtowc" "func" "int mbtowc (wchar_t *pwc, const char *s, size_t n);";
  365. .symbol "qsort" "func" "\
  366. void qsort (void *base, size_t nmemb, size_t size,
  367.             int (*compar) (const void *, const void *));";
  368. .symbol "rand" "func" "int rand (void);";
  369. .symbol "realloc" "func" "void *realloc (void *ptr, size_t size);";
  370. .symbol "system" "func" "int system (const char *string);";
  371. .symbol "srand" "func" "void srand (unsigned int seed);";
  372. .symbol "strtod" "func" "double strtod (const char *nptr, char **endptr);";
  373. .symbol "strtol" "func" "long int strtol (const char *nptr, char **endptr, int base);";
  374. .symbol "strolul" "func" "unsigned long int strtoul (const char *nptr, char **endptr, int base);";
  375. .symbol "wcstombs" "func" "size_t wcstombs (char *s, const wchar_t *pwcs, size_t n);";
  376. .symbol "wctomb" "func" "int wctomb (char *s, wchar_t wchar);";
  377. .symbol "div_t" "type" "$\
  378. no documentation. sorry.";
  379. .symbol "ldiv_t" "type" "$\
  380. no documentation. sorry.";
  381. .symbol "EXIT_FAILURE" "macro" "$\
  382. no documentation. sorry.";
  383. .symbol "EXIT_SUCCESS" "macro" "$\
  384. no documentation. sorry.";
  385. .symbol "MB_CUR_MAX" "macro" "$\
  386. no documentation. sorry.";
  387. .symbol "MB_LEN_MAX" "macro" "$\
  388. no documentation. sorry.";
  389. .symbol "RAND_MAX" "macro" "$\
  390. no documentation. sorry.";
  391.  
  392. .header "string.h";
  393. .symbol "memchr" "func" "void *memchr (const void *s, int c, size_t n);";
  394. .symbol "memcmp" "func" "int memcmp (const void *s1, const void *s2, size_t n);";
  395. .symbol "memcpy" "func" "void *memcpy (void *s1, const void *s2, size_t n);";
  396. .symbol "memmove" "func" "void *memmove (void *s1, const void *s2, size_t n);";
  397. .symbol "memset" "func" "void *memset (void *s, int c, size_t n);";
  398. .symbol "strcat" "func" "char *strcat (char *s1, const char *s2);";
  399. .symbol "strchr" "func" "char *strchr (const char *s, int c);";
  400. .symbol "strcmp" "func" "int strcmp (const char *s1, const char *s2);";
  401. .symbol "strcoll" "func" "int strcoll (const char *s1, const char *s2);";
  402. .symbol "strcpy" "func" "char *strcpy (char *s1, const char *s2);";
  403. .symbol "strcspn" "func" "size_t strcspn (const char *s1, const char *s2);";
  404. .symbol "strerror" "func" "char *strerror (int errnum);";
  405. .symbol "strlen" "func" "size_t strlen (const char *s);";
  406. .symbol "strncat" "func" "char *strncat (char *s1, const char *s2, size_t n);";
  407. .symbol "strncmp" "func" "int strncmp (const char *s1, const char *s2, size_t n);";
  408. .symbol "strncpy" "func" "char *strncpy (char *s1, const char *s2, size_t n);";
  409. .symbol "strpbrk" "func" "char *strpbrk (const char *s1, const char *s2);";
  410. .symbol "strrchr" "func" "char *strrchr (const char *s, int c);";
  411. .symbol "strspn" "func" "size_t strspn (const char *s1, const char *s2);";
  412. .symbol "strstr" "func" "char *strstr (const char *s1, const char *s2);";
  413. .symbol "strtok" "func" "char *strtok (char *s1, const char *s2);";
  414. .symbol "strxfrn" "func" "size_t strxfrm (char *s1, const char *s2, size_t n);";
  415.  
  416. .header "time.h";
  417. .symbol "asctime" "func" "char *asctime (const struct tm *timeptr);";
  418. .symbol "clock" "func" "clock_t clock (void);";
  419. .symbol "ctime" "func" "char *ctime (const time_t *timer);";
  420. .symbol "difftime" "func" "double difftime (time_t time1, time_t time0);";
  421. .symbol "gmtime" "func" "struct tm *gmtime (const time_t timer);";
  422. .symbol "localtime" "func" "struct tm *localtime (const time_t *timer);";
  423. .symbol "mktime" "func" "time_t mktime (struct tm *timeptr);";
  424. .symbol "strftime" "func" "\
  425. size_t strftime (char *s, size_t maxsize, const char *format,
  426.                  const struct tm *timeptr);";
  427. .symbol "time" "func" "time_t time (time_t *timer);";
  428. .symbol "clock_t" "type" "$\
  429. no documentation. sorry";
  430. .symbol "time_t" "type" "$\
  431. no documentation. sorry";
  432. .symbol "tm" "struct" "\
  433. struct tm {
  434.   int tm_sec;
  435.   int tm_min;
  436.   int tm_hour;
  437.   int tm_mday;
  438.   int tm_mon;
  439.   int tm_year;
  440.   int tm_wday;
  441.   int tm_yday;
  442.   int tm_isdst;
  443. };";
  444. .symbol "CLK_TCK" "macro" "$\
  445. no documentation. sorry";
  446. .symbol "CLOCKS_PER_SEC" "macro" "$\
  447. no documentation. sorry";
  448.  
  449. # cinfo.lib.standardc ends here
  450.